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