Chervil is a toy Lisp interpreter written in Ruby
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

string_spec.rb 157B

1234567
  1. module Chervil::AST
  2. RSpec.describe String do
  3. it 'evaluates' do
  4. expect(String.new("hello world").evaluate).to eq("hello world")
  5. end
  6. end
  7. end