Replies: 2 comments 3 replies
-
Hi @aleeusgr! Great to see you here! Example is based on the real project setup. Kudos to @MitchyCola for providing this template!❤️ |
Beta Was this translation helpful? Give feedback.
2 replies
-
https://github.com/aleeusgr/plutus-testing This a repo in style of Gimbalabs PPBL, an example of project based learning. I will experiment there with plutip and testing in general. The goal is to create a material to be used in onboarding new Devs and bringing them up to speed in Cardano development |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello!
I want to learn (and create docs) on how to use plutip for writing tests; For this I think I should first write one, I found this amazing doc here in the repo, but there is a gap in my knowledge.
I need to set up an environment for my test suite, my first choice was to do
cabal init
and then add plutip to the .cabal file. I assume this will allow me to import functions in my Main.hs, and usecabal run
on my unit test.However I get import errors, and plutip is not on Hackage.
Therefore I need to import it some other way.
What would you advice?
Since I use nixOS, I hope to build my program as a flake.
I added
and
outputs = { self, nixpkgs, flake-utils, plutip }:
I understand that writing a flake involves several design choices, so I chose an existing solution.
Please help me figure out how to make the package available to import in app/Main.hs
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions