Giter Site home page Giter Site logo

"restartPrank" Helper about forge-std HOT 5 CLOSED

foundry-rs avatar foundry-rs commented on August 15, 2024 3
"restartPrank" Helper

from forge-std.

Comments (5)

brockelmore avatar brockelmore commented on August 15, 2024 1

This likely should be moved to https://github.com/foundry-rs/forge-std as a helper function if I understand your need correctly. See things like hoax:

forge-std/src/Test.sol

Lines 32 to 35 in 5927f70

function hoax(address who) public {
vm.deal(who, 1 << 128);
vm.prank(who);
}

Forge-std is designed to be helpers to improve UX

from forge-std.

brockelmore avatar brockelmore commented on August 15, 2024 1

@PaulRBerg can you describe the best UX here?

Something like:

    function changePrank(address who) internal {
        vm.stopPrank();
        vm.startPrank(who);
    }

maybe? Usage would be:

    function testF() public {
        vm.startPrank(myNormalPranker);
        do.stuff();
        changePrank(bob);
        do.stuffAsBob();
        changePrank(myNormalPranker);
        do.stuff();
    }

from forge-std.

PaulRBerg avatar PaulRBerg commented on August 15, 2024 1

@brockelmore your example captures exactly what I had in mind.

But I do want to note that I would expect changePrank to function like startPrank - that is, it would persist for all subsequent calls.

from forge-std.

lonerapier avatar lonerapier commented on August 15, 2024 1

@brockelmore @ZeroEkkusu anyone working on this, can I take a stab at it?

Seems straightforward.

from forge-std.

onbjerg avatar onbjerg commented on August 15, 2024

I agree w @brockelmore. Let me move the issue to Forge Std

Edit: Ok, I can't move it to Forge Std for some reason, guess I don't have the necessary perms. @brockelmore can you try?

from forge-std.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.