Sha256: 0b82fc8ef209f076ae379361f4ea27169941d8715bb8f5e24ec286415426c6fb

Contents?: true

Size: 412 Bytes

Versions: 3

Compression:

Stored size: 412 Bytes

Contents

require File.dirname(__FILE__) + '/../../spec_helper'

describe Mustang::V8 do
  it "responds to .version" do
    subject.should respond_to(:version)
    subject.version.should =~ /^\d.\d.\d$/
  end

  it "responds to .dead?" do
    subject.should respond_to(:dead?)
    subject.should_not be_dead
  end

  it "responds to .alive?" do
    subject.should respond_to(:alive?)
    subject.should be_alive
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mustang-0.2.2 spec/mustang/v8/main_spec.rb
mustang-0.2.1 spec/mustang/v8/main_spec.rb
mustang-0.2.0 spec/mustang/v8/main_spec.rb