Skip to content

Commit

Permalink
delete some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahZinsmeister committed Mar 21, 2023
1 parent 1d22ddd commit 7418297
Show file tree
Hide file tree
Showing 14 changed files with 21 additions and 111 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
cache/
foundry-out/
4 changes: 0 additions & 4 deletions contracts/test/TestERC20.sol

This file was deleted.

3 changes: 3 additions & 0 deletions remappings.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/
@uniswap/core-next/=lib/core-next/
forge-std/=lib/forge-std/src/
File renamed without changes.
16 changes: 16 additions & 0 deletions test/LimitOrderHook.t.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.19;

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

contract TestLimitOrderHook is Test {
function setUp() public {
MockHooks impl = new MockHooks();
vm.etch(ALL_HOOKS_ADDRESS, address(impl).code);
mockHooks = MockHooks(ALL_HOOKS_ADDRESS);
(manager, key,) = Deployers.createFreshPool(mockHooks, 3000, SQRT_RATIO_1_1);
modifyPositionRouter = new PoolModifyPositionTest(IPoolManager(address(manager)));
swapRouter = new PoolSwapTest(IPoolManager(address(manager)));
donateRouter = new PoolDonateTest(IPoolManager(address(manager)));
}
}
17 changes: 0 additions & 17 deletions test/__snapshots__/LimitOrderHook.spec.ts.snap

This file was deleted.

File renamed without changes.
File renamed without changes.
16 changes: 0 additions & 16 deletions test/shared/evmHelpers.ts

This file was deleted.

8 changes: 0 additions & 8 deletions test/shared/expect.ts

This file was deleted.

22 changes: 0 additions & 22 deletions test/shared/fixtures.ts

This file was deleted.

10 changes: 0 additions & 10 deletions test/shared/format.ts

This file was deleted.

34 changes: 0 additions & 34 deletions test/shared/mockContract.ts

This file was deleted.

File renamed without changes.

0 comments on commit 7418297

Please sign in to comment.