# encoding: utf-8
#
require 'spec_helper'

describe Picky::Generators::Server::Sinatra do
  
  before(:each) do
    @sinatra = Picky::Generators::Server::Sinatra.new :sinatra_server, 'sinatra_server_dir_name'
    @sinatra.stub! :exclaim
  end
  
  context "after initialize" do
    it 'has the right identifier' do
      @sinatra.identifier.should == :sinatra_server
    end
    it 'has the right name' do
      @sinatra.name.should == 'sinatra_server_dir_name'
    end
    it 'has the right prototype dir' do
      @sinatra.prototype_basedir.should == File.expand_path('../../../../../../prototypes/server/sinatra', __FILE__)
    end
  end
  
  describe "generate" do
    it "should do things in order" do
      @sinatra.should_receive(:exclaim).once.ordered # Initial explanation
      @sinatra.should_receive(:create_target_directory).once.ordered
      @sinatra.should_receive(:copy_all_files).twice.ordered
      @sinatra.should_receive(:exclaim).at_least(8).times.ordered # Some user steps to do
      
      @sinatra.generate
    end
  end
  
end