Init 🏁

This commit is contained in:
2022-01-03 21:21:30 +03:00
commit 8f90574b08
9 changed files with 177 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
require "./spec_helper"
describe Passw0rdManager do
# TODO: Write tests
it "works" do
false.should eq(true)
end
end

2
spec/spec_helper.cr Normal file
View File

@@ -0,0 +1,2 @@
require "spec"
require "../src/passw0rd_manager"