README.md in que-testing-0.1.1 vs README.md in que-testing-0.2.0

- old
+ new

@@ -1,15 +1,15 @@ -# que-testing +# que-testing [![Build Status](https://travis-ci.org/statianzo/que-testing.svg?branch=master)](https://travis-ci.org/statianzo/que-testing) -Testing support for the [Que](https://github.com/chanks/que) queue +Testing support for the [Que](https://github.com/chanks/que) queue. que-testing allows you to enqueue jobs without a database and without synchronous running. ## Installation Add this line to your application's Gemfile: ```ruby -gem 'que-testing' +gem 'que-testing', :require => false ``` And then execute: $ bundle @@ -34,9 +34,9 @@ MyJob.enqueue("foo") js = MyJob.jobs js.length.must_equal 1 js.first["args"].must_equal ["foo"] - js.first["job_class"].must_equal ["MyJob"] + js.first["job_class"].must_equal "MyJob" end end ```