// // Created by AUTHOR. // Copyright © YEAR AUTHOR. All rights reserved. //

//#import “Spec.h” - this header should have imports of Specta, Expecta, OCMokito, OCHamrest import “VIPERViewController.h”

SpecBegin(VIPERViewController)

describe(@“VIPERViewController”,^{

__block VIPERViewController *sut;

beforeEach(^{

});

afterEach(^{
    sut = nil;
});

describe(@"VIPERViewControllerComponent",{
    it(@"VIPERViewControllerComponent should pass test",{

    });
});

});

SpecEnd