eturk/marvin

View on GitHub
spec/lib/marvin/ast/expression_spec.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'spec_helper'

describe Marvin::AST::Expression do
  let(:node) { Marvin::AST::Expression.new }

  it 'inherits from Marvin::AST::Base' do
    expect(node).to be_a Marvin::AST::Base
  end
end