-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
73f647c
commit 991ee3f
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity 0.8.23; | ||
|
||
import /* {*} from */ "../../../helpers/TestBaseWorkflow.sol"; | ||
|
||
contract TestInitialProject_Local is JBTest { | ||
address _owner = makeAddr("owner"); | ||
IJBProjects _projects; | ||
|
||
function setUp() public {} | ||
|
||
function test_WhenInitialOwnerDNEQZeroAddress() external { | ||
// It will create a project | ||
|
||
vm.expectEmit(); | ||
emit IJBProjects.Create(1, _owner, address(this)); | ||
_projects = new JBProjects(_owner, _owner); | ||
} | ||
|
||
} |