spec/unit/project_spec.rb in omnibus-5.6.8 vs spec/unit/project_spec.rb in omnibus-6.0.1
- old
+ new
@@ -212,18 +212,18 @@
expect(subject.build_iteration).to eq(1)
end
end
context "when on Debian" do
- let(:fauxhai_options) { { platform: "debian", version: "8.8" } }
+ let(:fauxhai_options) { { platform: "debian", version: "8.11" } }
it "returns a Debian iteration" do
expect(subject.build_iteration).to eq(1)
end
end
context "when on FreeBSD" do
- let(:fauxhai_options) { { platform: "freebsd", version: "9.3" } }
+ let(:fauxhai_options) { { platform: "freebsd", version: "10.4" } }
it "returns a FreeBSD iteration" do
expect(subject.build_iteration).to eq(1)
end
end
@@ -234,10 +234,10 @@
expect(subject.build_iteration).to eq(1)
end
end
context "when on OS X" do
- let(:fauxhai_options) { { platform: "mac_os_x", version: "10.12" } }
+ let(:fauxhai_options) { { platform: "mac_os_x", version: "10.13" } }
it "returns a generic iteration" do
expect(subject.build_iteration).to eq(1)
end
end
end