pixelfaucet/spec/game_spec.cr

19 lines
252 B
Crystal
Raw Permalink Normal View History

2021-11-25 20:25:28 +01:00
require "./spec_helper"
require "../src/game"
class Example < PF::Game
def update(dt)
2021-11-25 20:25:28 +01:00
end
def draw
end
end
describe PF::Game do
it "Instantiates" do
example = Example.new(100, 60)
example.running = false
example.run!
end
end