summaryrefslogtreecommitdiff
path: root/qa/spec
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2018-01-09 13:20:57 +0100
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2018-01-09 13:21:23 +0100
commitdee047aaca8e668a195194163e2b8841bf5dc647 (patch)
tree6a91ea3a0b194cbebc1afe0ca6859dfe9c0adad4 /qa/spec
parentdf774fae4148fcb91380841c48514762d255affb (diff)
downloadgitlab-ce-dee047aaca8e668a195194163e2b8841bf5dc647.tar.gz
Add QA login page views / selectors definition
Diffstat (limited to 'qa/spec')
-rw-r--r--qa/spec/page/view_spec.rb10
1 files changed, 2 insertions, 8 deletions
diff --git a/qa/spec/page/view_spec.rb b/qa/spec/page/view_spec.rb
index dd38b171ad5..aedbc3863a7 100644
--- a/qa/spec/page/view_spec.rb
+++ b/qa/spec/page/view_spec.rb
@@ -24,12 +24,6 @@ describe QA::Page::View do
end
describe '#errors' do
- let(:file) { spy('file') }
-
- before do
- allow(File).to receive(:new).and_return(file)
- end
-
context 'when view partial is present' do
before do
allow(subject.pathname).to receive(:readable?)
@@ -38,7 +32,7 @@ describe QA::Page::View do
context 'when pattern is found' do
before do
- allow(file).to receive(:foreach)
+ allow(File).to receive(:foreach)
.and_yield('some element').once
allow(element).to receive(:matches?)
.with('some element').and_return(true)
@@ -51,7 +45,7 @@ describe QA::Page::View do
context 'when pattern has not been found' do
before do
- allow(file).to receive(:foreach)
+ allow(File).to receive(:foreach)
.and_yield('some element').once
allow(element).to receive(:matches?)
.with('some element').and_return(false)