diff --git a/test/units/static/JBProjects/TestInitialProject.sol b/test/units/static/JBProjects/TestInitialProject.sol new file mode 100644 index 00000000..72fd4339 --- /dev/null +++ b/test/units/static/JBProjects/TestInitialProject.sol @@ -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); + } + +} \ No newline at end of file