spec/signore/database_spec.rb in signore-0.2.0 vs spec/signore/database_spec.rb in signore-0.2.1

- old
+ new

@@ -23,10 +23,10 @@ db.find(required_tags: ['work']).text .must_equal 'You do have to be mad to work here, but it doesn’t help.' end it 'returns a random signature based on required and forbidden tags' do - forbidden_tags = %w[programming security] + forbidden_tags = %w(programming security) db.find(required_tags: ['tech'], forbidden_tags: forbidden_tags).text .must_equal 'You do have to be mad to work here, but it doesn’t help.' end end