From 9f749f411f896c98d0aec83a970c3e65c5383521 Mon Sep 17 00:00:00 2001 From: deejkelms Date: Thu, 21 Jan 2016 20:01:21 -0500 Subject: [PATCH] Done. --- spec/variable_spec.rb | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/spec/variable_spec.rb b/spec/variable_spec.rb index ab66936..9eb5dd2 100644 --- a/spec/variable_spec.rb +++ b/spec/variable_spec.rb @@ -1,10 +1,6 @@ # Code your solution in variable.rb -describe "./variable.rb" do +greeting = "Hello World" - it "defined a local variable called greeting and set it equal to 'Hello World'" do - greeting = get_variable_from_file('./variable.rb', "greeting") +puts "defined a local variable called greeting and set it equal to #{greeting}" - expect(greeting).to eq("Hello World") - end -end