require "#{File.expand_path(File.dirname(__FILE__))}/helper" require 'crystal/environment' describe "Environment basic spec" do before :all do crystal.clear ::SILENCE_LOGGER = true end after :all do crystal.clear remove_constants :SILENCE_LOGGER end it "logger should work before Crystal initialized" do crystal[:logger].should_not be_nil end end