コード例 #1
0
        public void RenameBranch()
        {
            const string oldName = "foo";
            const string newName = "far";
            const string output  = "bar";

            using (_executable.StageOutput($"branch -m \"{oldName}\" \"{newName}\"", output))
            {
                Assert.AreEqual(output, _gitModule.RenameBranch(oldName, newName));
            }
        }