Introduction An essential property of an automated test and the entire test suite is its determinism. This means that a test should always have the same result when the tested […]
Nebojša Stričević
Automatic Security Testing of Rails Applications Using Brakeman
Introduction Brakeman is a tool that scans a Ruby on Rails application for common vulnerabilities. It’s a static code analyzer that can help you find security problems before you release […]
Testing Clojure With Expectations
Introduction Clojure is shipped with clojure.test — a library with basic features for writing tests. However, there are a few alternatives that aim to make writing tests more pleasant or […]
Testing Clojure Web Applications with Selenium
Selenium is a commonly used set of tools for automating browsers. It allows you to drive a browser interaction with a web page by writing code. It’s most often used […]
Testing Clojure web applications with Kerodon
Clojure standard library includes a general unit testing library clojure.test. There are several other libraries created for a specific purpose in mind. One of them is Kerodon, inspired by Ruby’s […]
Setting Up the BDD Stack on a New Rails 4 Application
Introduction This tutorial guides you through generating a new Rails 4 application with RSpec and Cucumber as testing tools. If you’d like to learn how to set up a BDD […]
How to write a custom Kerodon matcher
Kerodon provides a friendly API for interacting with web pages in tests. With Kerodon you write a test from the perspective of a user interacting with a web application from […]
How to Deploy a Compojure Application to OpenShift
Introduction OpenShift is Red Hat’s cloud computing platform as a service. It’s based on open source OpenShift Origin project. The platform officially supports a number of languages: Java, PHP, Ruby, […]
Queued Builds Cancellation
Last week we introduced high priority branches. Today, we’re introducing a new feature that gives more control over the build queue – queued builds cancellation.
High Priority Branches
Semaphore features a custom build queue algorithm that was designed to make the build flow for a team as pleasant as possible.
Testing Clojure With Expectations
Clojure is shipped with clojure.test. However, there are a few alternatives that aim to make writing tests more pleasant or more suitable for BDD.
Introducing User Profiles
Recently we introduced organizations and organization profile pages with a list of projects. Today, we’re launching the first version of profile…
Upgrade your paranoia with Brakeman
Brakeman is a wonderful tool that can scan your Ruby on Rails application for common vulnerabilities. It’s a static code analyzer that can help you find…
Exploring CasperJS and Continuous Integration
All Ruby developers are probably familiar with Capybara – the tool for interacting with web pages that we all use and love. A similar thing exists in the JavaScript world […]
Setting up Jasmine JavaScript tests for continuous integration
If you are writing JavaScript or CoffeeScript and want to practice TDD, probably the best option for you to implement automatic tests is Jasmine. There are a few nice articles […]