Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
BCLeFevre committed Mar 27, 2024
1 parent 8050091 commit 760c33c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
4 changes: 4 additions & 0 deletions foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,9 @@ src = "src"
out = "out"
libs = ["lib"]
evm_version = "cancun"
test = 'test/foundry'
remappings = [
'forge-std/=lib/forge-std/src/',
]

# See more config options https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options
18 changes: 18 additions & 0 deletions test/foundry/TestTstorish.t.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;

import {Test} from "forge-std/Test.sol";

import {Tstorish} from "../../src/Tstorish.sol";

contract TestTstorish is Test {
Tstorish tstorish;

function setUp() public override {
_deployTstorish();
}

function _deployTstorish() private {
tstorish = new Tstorish();
}
}

0 comments on commit 760c33c

Please sign in to comment.