blob: e25e425bcf4ca06aa47a5bbec5d2b2855d563a71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /usr/bin/env ruby
# -*- coding: UTF-8 -*-
#
require 'evendoors'
#
describe EvenDoors do
#
it "EvenDoors module should exxists" do
expect{ EvenDoors }.not_to raise_error(NameError)
end
#
end
|