summaryrefslogtreecommitdiff
path: root/qa/spec/runtime/scenario_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/spec/runtime/scenario_spec.rb')
-rw-r--r--qa/spec/runtime/scenario_spec.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/qa/spec/runtime/scenario_spec.rb b/qa/spec/runtime/scenario_spec.rb
deleted file mode 100644
index 7009192bcc0..00000000000
--- a/qa/spec/runtime/scenario_spec.rb
+++ /dev/null
@@ -1,27 +0,0 @@
-describe QA::Runtime::Scenario do
- subject 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')
-
- 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')
- end
-
- 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, '')
-
- expect { subject.empty_attribute }
- .to raise_error ArgumentError, /empty_attribute/
- end
-end