summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2015-09-15 21:27:04 +0200
committerKamil Trzcinski <ayufan@ayufan.eu>2015-09-15 21:27:10 +0200
commit10cf1050d08c672e0ee2c9823db31a51e7b54782 (patch)
tree60363a985daa7eee9eb861c6aab1e5596d9c3f12 /spec
parent5f315bd565a6fb4c778a32199ef276fafda56f20 (diff)
downloadgitlab-ce-10cf1050d08c672e0ee2c9823db31a51e7b54782.tar.gz
Fix: helpers/ci/runners_helper_spec.rb
Diffstat (limited to 'spec')
-rw-r--r--spec/helpers/ci/runners_helper_spec.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/spec/helpers/ci/runners_helper_spec.rb b/spec/helpers/ci/runners_helper_spec.rb
index e7681df10bd..6d0e2d3d1e1 100644
--- a/spec/helpers/ci/runners_helper_spec.rb
+++ b/spec/helpers/ci/runners_helper_spec.rb
@@ -2,17 +2,17 @@ require 'spec_helper'
describe Ci::RunnersHelper do
it "returns - not contacted yet" do
- runner = FactoryGirl.build :runner
- runner_status_icon(runner).should include("not connected yet")
+ runner = FactoryGirl.build :ci_runner
+ expect(runner_status_icon(runner)).to include("not connected yet")
end
it "returns offline text" do
- runner = FactoryGirl.build(:runner, contacted_at: 1.day.ago, active: true)
- runner_status_icon(runner).should include("Runner is offline")
+ runner = FactoryGirl.build(:ci_runner, contacted_at: 1.day.ago, active: true)
+ expect(runner_status_icon(runner)).to include("Runner is offline")
end
it "returns online text" do
- runner = FactoryGirl.build(:runner, contacted_at: 1.hour.ago, active: true)
- runner_status_icon(runner).should include("Runner is online")
+ runner = FactoryGirl.build(:ci_runner, contacted_at: 1.hour.ago, active: true)
+ expect(runner_status_icon(runner)).to include("Runner is online")
end
end