1
0
Fork 0
mirror of https://github.com/rubyjs/libv8 synced 2023-03-27 23:21:48 -04:00
libv8/spec/libv8_spec.rb
2012-05-09 15:06:57 -05:00

22 lines
445 B
Ruby

require 'spec_helper'
require 'pathname'
describe Libv8 do
include Libv8
it "can find the static library components" do
Pathname(libv8_base).should exist
Pathname(libv8_snapshot).should exist
end
it "has a valid include path" do
Pathname(libv8_include_path).should be_exist
end
it "can retrieve objects by name" do
libv8_objects(:base, :snapshot).each do |obj|
Pathname(obj).should exist
end
end
end