Fix a dumb with merge

This commit is contained in:
Michael Miller 2020-01-19 10:05:21 -07:00
parent 1825026af7
commit e60c287216
3 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
name: spectator name: spectator
version: 0.9.4 version: 0.9.5
description: | description: |
A feature-rich spec testing framework for Crystal with similarities to RSpec. A feature-rich spec testing framework for Crystal with similarities to RSpec.

View file

@ -6,7 +6,7 @@ module Spectator
extend self extend self
# Current version of the Spectator library. # Current version of the Spectator library.
VERSION = "0.9.4" VERSION = "0.9.5"
# Top-level describe method. # Top-level describe method.
# All specs in a file must be wrapped in this call. # All specs in a file must be wrapped in this call.

View file

@ -24,7 +24,7 @@ module Spectator
{{what}} {{what}}
end end
def _spectator_implicit_subject(*args) def subject(*args)
described_class.new(*args) described_class.new(*args)
end end
{% else %} {% else %}