Replace be_true' matchers with be true' in specs

This commit is contained in:
Thibault Jouan 2013-12-19 19:46:32 +00:00
parent 3b3542fc66
commit a692efe96d
2 changed files with 3 additions and 3 deletions

View File

@ -61,7 +61,7 @@ module Producer::Core
end
it 'assigns true as the condition' do
expect(dsl.instance_eval { @condition }).to be_true
expect(dsl.instance_eval { @condition }).to be true
end
end

View File

@ -46,8 +46,8 @@ module Producer::Core
expect(task.actions).to be_empty
end
it 'assigns a truthy condition' do
expect(task.condition).to be_true
it 'assigns a true condition' do
expect(task.condition).to be true
end
end
end