Sha256: f60565f1541e61788994aba7d33793d7d54bdbcd187b16c5f151e741462fbf11

Contents?: true

Size: 1.56 KB

Versions: 2

Compression:

Stored size: 1.56 KB

Contents

# WorkableJsonAssertions

This gem adds basic JSON assertions to your controller tests.

## Installation

Add this line to your application's Gemfile:

    group :test do
      gem 'workable_json_assertions'
    end

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install workable_json_assertions

## Usage

### assert\_json\_response_empty
```ruby
class BasicControllerTest < ActionController::TestCase
	def test_success
		get :index # {}
		assert_json_response_empty
	end
end
```

### assert\_json\_response_equal
```ruby
class BasicControllerTest < ActionController::TestCase
	def test_success
		get :index # { 'key': 'value' }
		assert_json_response_equal { key: 'value' }
	end
end
```

### assert\_json\_response\_equal_except
```ruby
class BasicControllerTest < ActionController::TestCase
	def test_success
		get :index # { 'key': 'value', 'created_at': '2016-07-25', 'updated_at': '2016-07-26' }
		assert_json_response_equal_except { key: 'value' }, %i(created_at updated_at)
	end
end
```

### assert\_json\_response\_includes
```ruby
class BasicControllerTest < ActionController::TestCase
	def test_success
		get :index # { 'key': 'value', 'created_at': '2016-07-25', 'updated_at': '2016-07-26' }
		assert_json_response_includes({ key: 'value' })
    assert_json_response_includes({ created_at: '2016-07-25' })
	end
end
```

## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
workable_json_assertions-0.1.2 README.md
workable_json_assertions-0.1.1 README.md