josephwilk/creative-machine

View on GitHub
spec_integration/poet_spec.rb

Summary

Maintainability
A
0 mins
Test Coverage
require File.dirname(__FILE__) + '/spec_helper'

module Creative
module Machine
  
  describe Poet do
    it "should create creative poems" do
      poet = Creative::Machine::Poet.new
      poems = poet.evolve()
    end
  end
  
end
end