Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2015-09-15 22:27:04 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2015-09-15 22:27:10 +0300
commit10cf1050d08c672e0ee2c9823db31a51e7b54782 (patch)
tree60363a985daa7eee9eb861c6aab1e5596d9c3f12
parent5f315bd565a6fb4c778a32199ef276fafda56f20 (diff)
Fix: helpers/ci/runners_helper_spec.rb
-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