mirror of
https://github.com/plashchynski/crono.git
synced 2026-03-18 07:24:20 +01:00
12 lines
208 B
Ruby
12 lines
208 B
Ruby
require "spec_helper"
|
|
|
|
describe Crono::Logger do
|
|
describe "#initialize" do
|
|
it "should initialize logger" do
|
|
expect {
|
|
Crono.logger.info("Test")
|
|
}.to_not raise_error
|
|
end
|
|
end
|
|
end
|