mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-20 10:06:04 +10:00
19 lines
593 B
Ruby
19 lines
593 B
Ruby
require 'spec_helper'
|
|
|
|
describe RunnersHelper do
|
|
it "returns - not contacted yet" do
|
|
runner = FactoryGirl.build :ci_runner
|
|
expect(runner_status_icon(runner)).to include("not connected yet")
|
|
end
|
|
|
|
it "returns offline text" do
|
|
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(:ci_runner, contacted_at: 1.second.ago, active: true)
|
|
expect(runner_status_icon(runner)).to include("Runner is online")
|
|
end
|
|
end
|