Sha256: 0b9bdef6b2d32e25ae4431b7e259333f47a8361f4715bff3ea28a7425f1c0b86
Contents?: true
Size: 569 Bytes
Versions: 10
Compression:
Stored size: 569 Bytes
Contents
require 'spec_helper' require 'helpers/projects' require 'projects/project_examples' describe "FFI Bindings project" do include Helpers::Projects before(:all) do @project = project('ffi-binding') end it_should_behave_like 'an Ore Project' it "should correctly guess the namespace" do @project.namespace.should == 'FFI::Binding' end it "should have a namespace directory" do @project.namespace_dir.should == 'ffi/binding' end it "should have external requirements" do @project.requirements.should == ['libstuff >= 1.0'] end end
Version data entries
10 entries across 10 versions & 2 rubygems