spaceship 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,16 +0,0 @@
1
- require 'spec_helper'
2
-
3
- describe Spaceship do
4
-
5
- describe Spaceship::Ship do
6
- subject { Spaceship::Ship.new }
7
-
8
- describe '#liftoff' do
9
- let(:output) { subject.liftoff }
10
-
11
- it 'returns the input' do
12
- expect(output).to eq "boom"
13
- end
14
- end
15
- end
16
- end
@@ -1 +0,0 @@
1
- require 'spaceship'
@@ -1,3 +0,0 @@
1
- require 'rspec/core/rake_task'
2
-
3
- RSpec::Core::RakeTask.new(:spec)