mirror of
https://github.com/ditkrg/workflower.git
synced 2026-01-22 14:17:11 +00:00
12 lines
230 B
Ruby
12 lines
230 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe Workflower do
|
|
it "has a version number" do
|
|
expect(Workflower::VERSION).not_to be nil
|
|
end
|
|
|
|
it "transitions from saved to submitted" do
|
|
expect(true).to eq(true)
|
|
end
|
|
end
|