diff options
Diffstat (limited to 'qa/spec/runtime/scenario_spec.rb')
-rw-r--r-- | qa/spec/runtime/scenario_spec.rb | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/qa/spec/runtime/scenario_spec.rb b/qa/spec/runtime/scenario_spec.rb index 7009192bcc0..531a2ffd62c 100644 --- a/qa/spec/runtime/scenario_spec.rb +++ b/qa/spec/runtime/scenario_spec.rb @@ -3,23 +3,23 @@ describe QA::Runtime::Scenario do Module.new.extend(described_class) end - it 'makes it possible to define global scenario attributes' do - subject.define(:my_attribute, 'some-value') - subject.define(:another_attribute, 'another-value') + it "makes it possible to define global scenario attributes" do + subject.define(:my_attribute, "some-value") + subject.define(:another_attribute, "another-value") - expect(subject.my_attribute).to eq 'some-value' - expect(subject.another_attribute).to eq 'another-value' + expect(subject.my_attribute).to eq "some-value" + expect(subject.another_attribute).to eq "another-value" expect(subject.attributes) - .to eq(my_attribute: 'some-value', another_attribute: 'another-value') + .to eq(my_attribute: "some-value", another_attribute: "another-value") end - it 'raises error when attribute is not known' do + it "raises error when attribute is not known" do expect { subject.invalid_accessor } .to raise_error ArgumentError, /invalid_accessor/ end - it 'raises error when attribute is empty' do - subject.define(:empty_attribute, '') + it "raises error when attribute is empty" do + subject.define(:empty_attribute, "") expect { subject.empty_attribute } .to raise_error ArgumentError, /empty_attribute/ |