Sha256: 8e7165beed9ecc26d8184ef0c07fa6629a22c85980eba636695118ef855f5502

Contents?: true

Size: 481 Bytes

Versions: 5

Compression:

Stored size: 481 Bytes

Contents

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

describe "Fathom" do
  it "should have required gsl, but not included it (avoiding Rational conflicts)" do
    Fathom.included_modules.should_not be_include(GSL)
    lambda{GSL}.should_not raise_error
  end
  
  it "should have a knowledge base" do
    Fathom.knowledge_base.should be_a(KnowledgeBase)
  end
  
  it "should alias kb for knowledge_base" do
    Fathom.kb.should eql(Fathom.knowledge_base)
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fathom-0.3.0 spec/fathom_spec.rb
fathom-0.2.3 spec/fathom_spec.rb
fathom-0.2.2 spec/fathom_spec.rb
fathom-0.2.1 spec/fathom_spec.rb
fathom-0.2.0 spec/fathom_spec.rb