Skip to content

Commit 177e1d8

Browse files
DEfusionstas
authored andcommitted
Fix issue when hash has symbol value for type
#29
1 parent 9f72ce1 commit 177e1d8

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

lib/jsonapi/rspec/type.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module RSpec
33
module Type
44
::RSpec::Matchers.define :have_type do |expected|
55
match do |actual|
6-
JSONAPI::RSpec.as_indifferent_hash(actual)['type'] == expected.to_s
6+
JSONAPI::RSpec.as_indifferent_hash(actual)['type'].to_s == expected.to_s
77
end
88
end
99
end

spec/jsonapi/type_spec.rb

+8
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@
55
expect('type' => 'foo').to have_type('foo')
66
end
77

8+
it 'succeeds when expectation is symbol' do
9+
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+
end
15+
816
it 'fails when type mismatches' do
917
expect('type' => 'foo').not_to have_type('bar')
1018
end

0 commit comments

Comments
 (0)