1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
require 'spec_helper'
describe Buff::RubyEngine do
describe "#jruby?" do
subject { described_class.jruby? }
context "when the ruby engine is jruby" do
before { stub_const("RUBY_ENGINE", "jruby") }
it { expect(subject).to be_truthy }
end
context "when the ruby engine is not jruby" do
before { stub_const("RUBY_ENGINE", "ruby") }
it { expect(subject).to be_falsey }
end
end
describe "#mri?" do
subject { described_class.mri? }
context "when the ruby engine is mri" do
before { stub_const("RUBY_ENGINE", "ruby") }
it { expect(subject).to be_truthy }
end
context "when the ruby engine is not mri" do
before { stub_const("RUBY_ENGINE", "jruby") }
it { expect(subject).to be_falsey }
end
end
describe "#rubinius?" do
subject { described_class.rubinius? }
context "when the ruby engine is rubinius" do
before { stub_const("RUBY_ENGINE", "rbx") }
it { expect(subject).to be_truthy }
end
context "when the ruby engine is not rubinius" do
before { stub_const("RUBY_ENGINE", "mri") }
it { expect(subject).to be_falsey }
end
end
end
|