spec/buildbox/buildbox/build_spec.rb in buildbox-0.0.2 vs spec/buildbox/buildbox/build_spec.rb in buildbox-0.0.3
- old
+ new
@@ -1,8 +1,8 @@
require 'spec_helper'
describe Buildbox::Build do
- let(:build) { Buildbox::Build.new(:uuid => '1234', :repo => "git@github.com:keithpitt/ci-ruby.git", :commit => "67b15b704e0", :command => "rspec") }
+ let(:build) { Buildbox::Build.new(:uuid => '1234', :repository => "git@github.com:keithpitt/ci-ruby.git", :commit => "67b15b704e0", :command => "rspec") }
describe "#start" do
let(:build_path) { double }
let(:root_path) { double(:join => build_path) }
let(:command) { double(:run => true, :run! => true) }