1
0
Fork 0
mirror of https://github.com/nov/fb_graph2 synced 2023-03-27 23:22:15 -04:00
fb_graph2/spec/fb_graph2/collection_spec.rb
2014-06-03 18:26:33 +09:00

11 lines
No EOL
228 B
Ruby

require 'spec_helper'
describe FbGraph2::Collection do
context 'when non-collection object given' do
it do
expect do
FbGraph2::Collection.new 'scalar'
end.to raise_error ArgumentError
end
end
end