File: ruby_engine_spec.rb

package info (click to toggle)
ruby-buff-ruby-engine 0.1.0-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 164 kB
  • sloc: ruby: 86; makefile: 3
file content (51 lines) | stat: -rw-r--r-- 1,181 bytes parent folder | download | duplicates (2)
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