12 lines
160 B
Ruby
12 lines
160 B
Ruby
require "spec_helper"
|
|
require "foreman"
|
|
|
|
describe Foreman do
|
|
|
|
describe "VERSION" do
|
|
subject { Foreman::VERSION }
|
|
it { should be_a String }
|
|
end
|
|
|
|
end
|