We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f72ce1 commit 177e1d8Copy full SHA for 177e1d8
lib/jsonapi/rspec/type.rb
@@ -3,7 +3,7 @@ module RSpec
3
module Type
4
::RSpec::Matchers.define :have_type do |expected|
5
match do |actual|
6
- JSONAPI::RSpec.as_indifferent_hash(actual)['type'] == expected.to_s
+ JSONAPI::RSpec.as_indifferent_hash(actual)['type'].to_s == expected.to_s
7
end
8
9
spec/jsonapi/type_spec.rb
@@ -5,6 +5,14 @@
expect('type' => 'foo').to have_type('foo')
+ it 'succeeds when expectation is symbol' do
+ expect('type' => 'foo').to have_type(:foo)
10
+ end
11
+
12
+ it 'succeeds when type is a symbol' do
13
+ expect('type' => :foo).to have_type('foo')
14
15
16
it 'fails when type mismatches' do
17
expect('type' => 'foo').not_to have_type('bar')
18
0 commit comments