summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormokha <mokha@cisco.com>2019-04-15 11:28:45 -0600
committermokha <mokha@cisco.com>2019-04-15 11:28:45 -0600
commit95b4ff0f7f489e62a70cbafaf044019cacf54204 (patch)
tree270b09db658fd7b37babd5ab8ba0a9012a1e3fb4
parentf6a536c572be101dcf6a2e1a8daca448f7ce5a0a (diff)
fix broken spec
-rw-r--r--Gemfile.lock35
-rw-r--r--spec/baku_spec.rb8
2 files changed, 36 insertions, 7 deletions
diff --git a/Gemfile.lock b/Gemfile.lock
new file mode 100644
index 0000000..beb523c
--- /dev/null
+++ b/Gemfile.lock
@@ -0,0 +1,35 @@
+PATH
+ remote: .
+ specs:
+ baku (0.1.0)
+
+GEM
+ remote: https://rubygems.org/
+ specs:
+ diff-lcs (1.3)
+ rake (10.5.0)
+ rspec (3.8.0)
+ rspec-core (~> 3.8.0)
+ rspec-expectations (~> 3.8.0)
+ rspec-mocks (~> 3.8.0)
+ rspec-core (3.8.0)
+ rspec-support (~> 3.8.0)
+ rspec-expectations (3.8.2)
+ diff-lcs (>= 1.2.0, < 2.0)
+ rspec-support (~> 3.8.0)
+ rspec-mocks (3.8.0)
+ diff-lcs (>= 1.2.0, < 2.0)
+ rspec-support (~> 3.8.0)
+ rspec-support (3.8.0)
+
+PLATFORMS
+ ruby
+
+DEPENDENCIES
+ baku!
+ bundler (~> 2.0)
+ rake (~> 10.0)
+ rspec (~> 3.0)
+
+BUNDLED WITH
+ 2.0.1
diff --git a/spec/baku_spec.rb b/spec/baku_spec.rb
index 0790c70..ad5116d 100644
--- a/spec/baku_spec.rb
+++ b/spec/baku_spec.rb
@@ -1,9 +1,3 @@
RSpec.describe Baku do
- it "has a version number" do
- expect(Baku::VERSION).not_to be nil
- end
-
- it "does something useful" do
- expect(false).to eq(true)
- end
+ specify { expect(Baku::VERSION).not_to be_nil }
end